
            /* user styles */

            :root {
                --background-color: #B2D6D5;


                /* colors */
                --content: #1E3958;
            }

            @font-face {
                font-family: Arial;
                src: url('https://lucianinsanity.neocities.org/fonts/ARIAL.TTF');
            }

            @font-face {
                font-family: Arial;
                src: url('https://lucianinsanity.neocities.org/fonts/ARIBLK.TTF');
                font-weight: bold;
            }

            @font-face {
                font-family: Arial;
                src: url('https://lucianinsanity.neocities.org/fonts/ARIALI.TTF');
                font-style: italic;
            }

            @font-face {
                font-family: Arial;
                src: url('https://lucianinsanity.neocities.org/fonts/ARIALBI.TTF');
                font-style: italic;
                font-weight: bold;
            }

            body {
                font-family: 'Arial', sans-serif;
                margin: 0;
                background-color: #B2D6D5;
                background-size: 100%;
                color: #241E59;
                cursor: url('https://lucianinsanity.neocities.org/Images%20for%20looks/mouse-1.png'), auto;
            }

            * {
                box-sizing: border-box;
            }
img {
  max-width: 90%;
  max-height: 90%;
}
            /* below this line is CSS for the layout */

            #container {
                max-width: 900px;
                margin: 0 auto;
            }

            #container a {
                color: #343266;
                font-weight: bold;
            }

            #header {
                width: 100%;
                background-color: #B2D6D5;
                /* header color here! */
                height: 150px;
              background-size: 50%;
               background-repeat: no-repeat;
                background-position: center; 
            }

            /* navigation section!! */
            #navbar {
                height: 40px;
                background-color: #9BC5ED;
                /* navbar color */
                width: 100%;
            }

            #navbar ul {
                display: flex;
                padding: 0;
                margin: 0;
                list-style-type: none;
                justify-content: space-evenly;
            }

            #navbar li {
                padding-top: 10px;
            }

            /* navigation links*/
            #navbar li a {
                color: #343266;
                /* navbar text color */
                font-weight: 800;
                text-decoration: none;
                /* this removes the underline */
            }

            #navbar li a:hover {
                color: #9F6976;
                text-decoration: none;
            }

            #flex {
                display: flex;
            }

            /* this colors BOTH sidebars
    if you want to style them separately,
    create styles for #leftSidebar and #rightSidebar */
            aside {
                background-color: #A1CBED;
                width: 200px;
                padding: 20px;
                font-size: smaller;
                /* this makes the sidebar text slightly smaller */
            }
            
          #flex li a {
                color: #343266;
                /* navbar text color */
                font-weight: 700;
                text-decoration: none;
                /* this removes the underline */
            }
            
          #flex li a:hover {
                color: #9F6976;
                text-decoration: none;
            }

            /* this is the color of the main content area,
    between the sidebars! */
            main {
                background-color: #BFDEEC;
                flex: 1;
                padding: 20px;
                order: 2;
            }

             #leftSidebar {
                order: 1;}
                #rightSidebar {
                order: 3;
            }

           #btts {
                background-color: #B3D4EB;
                width: 100%;
                padding: 5px;
                float: left;
                border: 1px;
                }

            footer {
                background-color: #7296DF;
                /* background color for footer */
                width: 100%;
                height: 40px;
                padding: 10px;
                text-align: center;
                /* this centers the footer text */
                text-decoration: none;
                
            }
            
            #footer li a:hover {
                color: #9F6976;
                text-decoration: none;
            }

            h1,
            h2,
            h3 {
                color: #241E59;
            }

            h1 {
                font-size: 25px;
            }

            strong {
                /* this styles bold text */
                color: #241E59;
            }
a {
    position: relative;
    display: inline-block;
}

a span {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -1em;
    margin-left: -50%;
    width: 90%;
    height: 3em;
    color: #ECEFF2;
    background-color: rgba(0,0,0,0.5);
}
            /* CSS for extras */

            #topBar {
                width: 100%;
                height: 30px;
                padding: 10px;
                font-size: smaller;
                background-color: #67A2C0;
            }


            /* BELOW THIS POINT IS MEDIA QUERY */

            /* so you wanna change the width of your page? 
    by default, the container width is 900px.
    in order to keep things responsive, take your new height,
    and then subtrack it by 100. use this new number as the 
    "max-width" value below
    */
            
            @media only screen and (max-width: 800px) {
                #flex {
                    flex-wrap: wrap;
                }

                aside {
                    width: 100%;
                }

                /* the order of the items is adjusted here for responsiveness!
      since the sidebars would be too small on a mobile device.
      feel free to play around with the order!
      */
                main {
                    order: 1;
                }

                #leftSidebar {
                    order: 2;
                }

                #rightSidebar {
                    order: 3;
                }

                #navbar ul {
                    flex-wrap: wrap;
                }
            }
            
            